From 9693f556338dccdab46f276e113d667ac48a9a15 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Mon, 26 Nov 2007 22:28:48 +0000 Subject: [PATCH] vmx realmode: Slight finessing of an error path. Signed-off-by: Keir Fraser --- xen/arch/x86/hvm/vmx/realmode.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xen/arch/x86/hvm/vmx/realmode.c b/xen/arch/x86/hvm/vmx/realmode.c index 17460bf0d8..2cbac31c54 100644 --- a/xen/arch/x86/hvm/vmx/realmode.c +++ b/xen/arch/x86/hvm/vmx/realmode.c @@ -523,14 +523,13 @@ void vmx_realmode(struct cpu_user_regs *regs) if ( rc == X86EMUL_UNHANDLEABLE ) { - gdprintk(XENLOG_DEBUG, + gdprintk(XENLOG_ERR, "Real-mode emulation failed @ %04x:%08lx: " "%02x %02x %02x %02x %02x %02x\n", rm_ctxt.seg_reg[x86_seg_cs].sel, rm_ctxt.insn_buf_eip, rm_ctxt.insn_buf[0], rm_ctxt.insn_buf[1], rm_ctxt.insn_buf[2], rm_ctxt.insn_buf[3], rm_ctxt.insn_buf[4], rm_ctxt.insn_buf[5]); - gdprintk(XENLOG_ERR, "Emulation failed\n"); domain_crash_synchronous(); } } -- 2.30.2